home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00011_scene4C FRAME.ls < prev    next >
Encoding:
Text File  |  1999-03-01  |  405 b   |  21 lines

  1. on enterFrame
  2.   repeat with x = 10 to 20
  3.     puppetSprite(x, 1)
  4.     sprite(x).visible = 1
  5.   end repeat
  6.   puppetSprite(21, 1)
  7.   sprite(21).visible = 1
  8.   if rollOver(1) then
  9.     cursor([member("pointy").memberNum, member("pointy_mask").memberNum])
  10.     repeat with x = 10 to 21
  11.       puppetSprite(x, 0)
  12.       sprite(x).visible = 0
  13.     end repeat
  14.     go("Blur")
  15.   end if
  16. end
  17.  
  18. on exitFrame
  19.   go(the frame)
  20. end
  21.